home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stut_src / popup_pu.h < prev    next >
C/C++ Source or Header  |  1996-06-04  |  635b  |  24 lines

  1. /*
  2.  * popup_Public.h
  3.  */
  4.  
  5. #ifndef _POPUP_PU_H_
  6. #define _POPUP_PU_H_
  7.  
  8. #include "POPUP.H"
  9.  
  10.     /* 
  11.      * Pop-Up:
  12.      */
  13.     extern    void    PopUp_Init( void );
  14.     extern    int    popup_inform( OBJECT *call_form, int call_obj, int title_obj, POPUP_ENTRY *entries, int current_val );
  15.     const char * get_popup_name(             /* Out: Nom correspondant ou "" */
  16.             POPUP_ENTRY *    entries,     /* In:  Menu Pop-Up */
  17.             int                 n_val );        /* In:  Valeur … rechercher */
  18.     int    Popup_GetCurrVal( 
  19.             OBJECT        *    popup_title );    /* In: Objet titre de Menu */
  20.     extern    void    fix_popup_title( OBJECT    *popup_title, POPUP_ENTRY *entries, int current_val );
  21.  
  22. #endif
  23.  
  24.